Source Code

/Stock Downloader/

setup.py

from setuptools import setup
 
setup(
    name='stockdownloader',
    version='1.0.0',    
    description='A python package that downloads stock data over the alphavantage API.',
    url='https://brandmaier-webentwicklung.de',
    author='Maximilian Brandmaier',
    author_email='kontakt@brandmaier-webentwicklung.de',
    license='MIT',
    packages=['stockdownloader'],
    install_requires=['pandas>=1.1.4','requests>=2.25.0','requests-html>=0.10.0','requests-oauthlib>=1.3.0','numpy>=1.0.0'],
)